home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form QUES6
- BackColor = &H00800080&
- BorderStyle = 3 'Fixed Double
- Caption = "Question 6"
- ClientHeight = 2715
- ClientLeft = 2340
- ClientTop = 1935
- ClientWidth = 5520
- ClipControls = 0 'False
- ControlBox = 0 'False
- Height = 3120
- Left = 2280
- LinkTopic = "QUES6"
- MaxButton = 0 'False
- MDIChild = -1 'True
- MinButton = 0 'False
- ScaleHeight = 2715
- ScaleWidth = 5520
- Top = 1590
- Width = 5640
- Begin CommandButton Command2
- Cancel = -1 'True
- Caption = "Cancel"
- Default = -1 'True
- Height = 495
- Left = 1920
- TabIndex = 3
- Top = 1920
- Width = 1815
- End
- Begin CommandButton Command1
- Caption = "Easier"
- Height = 495
- Index = 0
- Left = 720
- TabIndex = 2
- Top = 1080
- Width = 1815
- End
- Begin CommandButton Command1
- Caption = "More challenging"
- Height = 495
- Index = 1
- Left = 2880
- TabIndex = 1
- Top = 1080
- Width = 1815
- End
- Begin Label Label1
- BackColor = &H00800080&
- Caption = "Compared to a year ago, has technology made your job easier or more challenging?"
- ForeColor = &H00FFFFFF&
- Height = 615
- Left = 360
- TabIndex = 0
- Top = 240
- Width = 4815
- End
- Sub Command1_Click (index As Integer)
- Question6 = ""
- Select Case index
- Case 0
- Question6 = "1"
- Case 1
- Question6 = "2"
- End Select
- If Question6 <> "" Then
- ques7.Show
- MsgBox ("Please answer the current question before moving on!")
- End If
- End Sub
- Sub Command2_Click ()
- response = MsgBox("Do you really want to close without sending in your responses?", 1, "Are you sure?")
- If response = 1 Then
- End
- End If
- End Sub
-